* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.policy-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.policy-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.policy-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.policy-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.section-text {
    color: #666;
    line-height: 1.6;
}

.section-text i {
    margin-right: 0.5rem;
    color: #ff6b6b;
}

@media (max-width: 768px) {
    .policy-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .policy-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policy-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .policy-content {
        padding: 1rem;
    }

    .section-text {
        font-size: 0.9rem;
    }
}